home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / AMT / Sample AMT⁄PE Code / SOURCES / oOPENSCR_1.k < prev    next >
Encoding:
Text File  |  1996-02-28  |  428 b   |  28 lines  |  [TEXT/MPS ]

  1. object oOPENSCR_1 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oOPENSCR_PIC_1_5
  7.     ];
  8. end;
  9.  
  10.  
  11. object oOPENSCR_PIC_1_5 is cPictureHandler
  12. with
  13.     Duration is -1;
  14.     Supplier is oOPENSCR_PIC_3_;
  15.     Behavior is cDefaultBehavior
  16.     has
  17.         MouseUp(theTarget, theX, theY)
  18.             do
  19.                 oBinder.Goto(oMMENU_2);
  20.             end;
  21.         
  22.     with
  23.         Enabled is true; Shown is true; 
  24.         X is 0; Y is 0; Width is 640; Height is 480;
  25.     end;
  26. end;
  27.  
  28.